Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Range<T> Class / Or Operator
The left operand.
The right operand.

In This Topic
    Or Operator
    In This Topic
    The union operator.
    Syntax
    'Declaration
     
    
    Public Operator Or( _
       ByVal left As Range(Of T), _
       ByVal right As Range(Of T) _
    ) As Range(Of T)
    public Range<T> operator |( 
       Range<T> left,
       Range<T> right
    )

    Parameters

    left
    The left operand.
    right
    The right operand.

    Return Value

    The union of left and right.
    See Also